##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 04\04.1067 - No Title.py
# Description: No Title
##############################################################################
if a < 10:
print("a is less than 10")
if a >= 10 and a < 20:
print("a is greater than 10 and less than 20")
if a >= 20:
print("a is greater than 20")